home *** CD-ROM | disk | FTP | other *** search
/ APDL Other Worlds / APDL Other Worlds Collection.iso / SF3000 / Extras / !SFtoSpr / h / Main next >
Encoding:
Text File  |  2003-11-06  |  531 b   |  23 lines

  1. /*
  2.  *  SFtoSpr - Star Fighter 3000 graphics converter
  3.  *  Main application skeleton
  4.  *  Copyright (C) 2000  Chris Bazley
  5.  */
  6.  
  7. #ifndef STSMain_h
  8. #define STSMain_h
  9.  
  10. #include <stdbool.h>
  11. #include "kernel.h"
  12.  
  13. extern _kernel_oserror shared_err_block;
  14. extern bool            verify_spriteareas;
  15. extern char            taskname[32];
  16. extern int             wimp_version;
  17. extern bool            multi_saveboxes;
  18. extern bool            output_new_format;
  19. extern ObjectId        last_savebox;
  20.  
  21. extern int main(int argc, char *argv[]);
  22. #endif
  23.